home *** CD-ROM | disk | FTP | other *** search
- echo off
- REM CMC ReSearch: CD-ROM, DiscPassage Installation batch file.
- setup
- if errorlevel 4 goto done
- if errorlevel 2 goto drived
- if errorlevel 3 goto drivee
- echo Copying DiscPassage program to drive C:
- copy \discpass.exe c:\discpass\dp.exe
- copy \dp.bat c:\dp.bat
- echo **********************************************************
- echo * To begin using the program, *
- echo * Type C: and return, then type DP and press return. *
- echo **********************************************************
- goto done
- :drived
- echo Copying DiscPassage program to drive D:
- copy \discpass.exe d:\discpass\dp.exe
- copy \dp.bat d:\dp.bat
- echo **********************************************************
- echo * To begin using the program, *
- echo * Type D: and return, then type DP and press return. *
- echo **********************************************************
- goto done
- :drivee
- echo Copying DiscPassage program to drive E:
- copy \discpass.exe e:\discpass\dp.exe
- copy \dp.bat e:\dp.bat
- echo **********************************************************
- echo * To begin using the program, *
- echo * Type E: and return, then type DP and press return. *
- echo **********************************************************
- :done
- echo on
-